home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / SWI / source / src / acconfig.h next >
Encoding:
Text File  |  1998-04-15  |  2.5 KB  |  99 lines

  1. /* Define if BSD compatible signals (i.e. no reset when fired) */
  2. #undef BSD_SIGNALS
  3.  
  4. /* Define if mmap() can be used to allocate stacks */
  5. #undef MMAP_STACK
  6.  
  7. /* Define if maximum address we can map at */
  8. #undef MMAP_MAX_ADDRESS
  9.  
  10. /* Define if minimum address we can map and if > sbrk(0) */
  11. #undef MMAP_MIN_ADDRESS
  12.  
  13. /* Define if MAP_ANON is defined and works ok */
  14. #undef HAVE_MAP_ANON
  15.  
  16. /* Define if you can't use asm("nop") to separate two labels */
  17. #undef NO_ASM_NOP
  18.  
  19. /* Define if ulong is not defined in <sys/types.h> */
  20. #undef NEED_ULONG
  21.  
  22. /* Define if ushort is not defined in <sys/types.h> */
  23. #undef NEED_USHORT
  24.  
  25. /* Define if uchar is not defined in <sys/types.h> */
  26. #undef NEED_UCHAR
  27.  
  28. /* Define if SIGPROF and setitimer() are available */
  29. #undef O_PROFILE
  30.  
  31. /* Define if signal handler is of the form f(sig, type, context, addr) */
  32. #undef SIGNAL_HANDLER_PROVIDES_ADDRESS
  33.  
  34. /* Define if (type)var = value is allowed */
  35. #undef TAGGED_LVALUE
  36.  
  37. /* Define as 0 if it gives problems (shouldn't do anymore) */
  38. #undef VMCODE_IS_ADDRESS
  39.  
  40. /* Define if first data symbol not is environ */
  41. #undef FIRST_DATA_SYMBOL
  42.  
  43. /* Define if pl-save.c works */
  44. #undef O_SAVE
  45.  
  46. /* Define if symbolic links are supported by the OS */
  47. #undef HAVE_SYMLINKS
  48.  
  49. /* Define if AIX foreign language interface is to be used */
  50. #undef O_AIX_FOREIGN
  51.  
  52. /* Define if MACH foreign language interface is to be used */
  53. #undef O_MACH_FOREIGN
  54.  
  55. /* Define if BSD Unix ld -A foreign language interface is to be used */
  56. #undef O_FOREIGN
  57.  
  58. /* Define if ld accepts -A option */
  59. #undef HAVE_LD_A
  60.  
  61. /* Define if wait() uses union wait */
  62. #undef UNION_WAIT
  63.  
  64. /* Define if <sys/ioctl> should *not* be included after <sys/termios.h> */
  65. #undef NO_SYS_IOCTL_H_WITH_SYS_TERMIOS_H
  66.  
  67. /* Define if -lreadline is present */
  68. #undef HAVE_LIBREADLINE
  69.  
  70. /* Define if, in addition to <errno.h>, extern int errno; is needed */
  71. #undef NEED_DECL_ERRNO
  72.  
  73. /* Define to "file.h" to include additional system prototypes */
  74. #undef SYSLIB_H
  75.  
  76. /* Define how to invoke the linker for incremental linking (default: ld) */
  77. #undef LD_COMMAND
  78.  
  79. /* Define to make runtime version */
  80. #undef O_RUNTIME
  81.  
  82. /* Define if you don't have termio(s), but struct sgttyb */
  83. #undef HAVE_SGTTYB
  84.  
  85. /* Define if <assert.h> requires <stdio.h> */
  86. #undef ASSERT_H_REQUIRES_STDIO_H
  87.  
  88. /* Define if doubles cannot be aligned as longs */
  89. #undef DOUBLE_ALIGNMENT
  90.  
  91. /* Define top of heap.  See pl-setup.c */
  92. #undef TOPOFHEAP
  93.  
  94. /* Define max size of mmapp()ed stacks.  See test/mmap.c */
  95. #undef MMAP_STACKSIZE
  96.  
  97. /* Define if the type rlim_t is defined by <sys/resource.h> */
  98. #undef HAVE_RLIM_T
  99.